TQABitmapDetach
A drawing engine must define a method to detach a bitmap from a drawing engine.
typedef TQAError (*TQABitmapDetach) (TQABitmap *bitmap);
bitmap
- A bitmap.
DESCRIPTION
YourTQABitmapDetach
function is called whenever an application callsQABitmapDetach
. Your function should, if necessary, load the bitmap specified by thebitmap
parameter into memory on the device associated with your drawing engine (so that the caller can release the memory occupied by the bitmap). YourTQABitmapDetach
function should not return until the bitmap has been completely loaded.